======================================== Loading Jupyter Kernel on VS Code ======================================== Updated: 10-02-2022 .. note:: Not all images contain VS Code. Currently the only stack that contains VS Code is the stack for Dr. Becerra's class. Contact Youngsu Kim if your image needs VS Code. We will use the ``Python + Jupyter`` extension. 1. Click on the VS-Code icon .. image:: images/vs-code/IMG_0370.png :width: 500 :alt: Alternative text #. Currently, no kernel is selected. .. image:: images/vs-code/IMG_0371.png :width: 500 :alt: Alternative text #. When clinking on ``Select Kernel``, you will be promoted to the command palette with ``Python + Jupyter`` as suggested extension. Hit ``return`` (or click on) to follow the suggestion. .. image:: images/vs-code/IMG_0375.png :width: 500 :alt: Alternative text #. Wait for the extension to be installed. .. image:: images/vs-code/IMG_0377.png :width: 500 :alt: Alternative text #. When done, the ``Select Kernel`` icon will be replaced by the kernel selected. If not, you can click on ``Select Kernel`` to choose one. .. image:: images/vs-code/IMG_0378.png :width: 500 :alt: Alternative text #. If you want to check the version in Python, run the following code. .. code-block:: python :caption: Python Version Check from platform import python_version print(python_version) .. image:: images/vs-code/IMG_0380.png :width: 500 :alt: Alternative text